home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Screen Parts / ScreenPart.h < prev    next >
Text File  |  1997-06-28  |  214b  |  16 lines

  1. // ScreenPart.h
  2.  
  3. #ifndef ScreenPart_h
  4. #define ScreenPart_h
  5.  
  6. class MouseDownEvent;
  7.  
  8. class ScreenPart
  9.   {
  10.     public:
  11.         virtual bool Active() const;
  12.         virtual void Click( const MouseDownEvent& ) const = 0;
  13.   };
  14.  
  15. #endif
  16.